| Conditions | 1 |
| Total Lines | 9 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import { BaseEndpoint } from './baseEndpoint'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get the alternative names of a network. |
||
| 24 | * @param { number } networkID |
||
| 25 | * @return { Promise<NetworkAlternativeNamesResponse> } |
||
| 26 | * @see https://developers.themoviedb.org/3/networks/get-network-alternative-names |
||
| 27 | */ |
||
| 28 | public async alternativeNames(networkID: number): Promise<NetworkAlternativeNamesResponse> { |
||
| 29 | return this.sendGetRequest(`network/${networkID}/alternative_names`); |
||
| 30 | } |
||
| 43 |